Generated by
JDiff

Interface org.globalplatform.CVM

Documentation changed from old to new.

Changed Methods
boolean blockState() Documentation changed from old to new.
Sets the CVM state to BLOCKED.
byte getTriesRemaining() Documentation changed from old to new.
Gets the CVM try counter, that is, the number of unsuccessful comparisons of the CVM value that may be performed before this CVM instance gets blocked.
boolean isActive() Documentation changed from old to new.
Indicates whether this CVM instance is active, that is, whether it has been fully initialized (i.e.
boolean isBlocked() Documentation changed from old to new.
Indicates whether this CVM instance is blocked, that is, whether the CVM state is BLOCKED.
boolean isSubmitted() Documentation changed from old to new.
Indicates whether an attempt has been made to compare the CVM value, that is, whether the CVM state is INVALID_SUBMISSION or VALIDATED.
boolean isVerified() Documentation changed from old to new.
Indicates whether a successful comparison of the CVM value has occurred, that is, whether the CVM state is VALIDATED.
boolean resetAndUnblockState() Documentation changed from old to new.
Resets the CVM state to ACTIVE, even if it is currently BLOCKED.
boolean resetState() Documentation changed from old to new.
Resets the CVM state to ACTIVE.
boolean setTryLimit(byte) Documentation changed from old to new.
Sets the CVM try limit, that is, the maximum value of the CVM try counter.
boolean update(byte[], short, byte, byte) Documentation changed from old to new.
Updates the CVM value.
short verify(byte[], short, byte, byte) Documentation changed from old to new.
Compares a value with the stored CVM value.
 

Changed Fields
byte FORMAT_ASCII Documentation changed from old to new.
The CVM value is formatted as ASCII bytes.
byte FORMAT_BCD Documentation changed from old to new.
The CVM value is formatted as numerical digits, coded on a nibble (4 bits) and left justified.
byte FORMAT_HEX Documentation changed from old to new.
The CVM value is formatted as hexadecimal (binary) data.